golang.org/x/net/http2.ClientConn.pendingRequests (field)

5 uses

	golang.org/x/net/http2 (current package)
		transport.go#L321: 	pendingRequests int                       // requests blocked and waiting to be sent because len(streams) == maxConcurrentStreams
		transport.go#L939: 		StreamsPending:       cc.pendingRequests,
		transport.go#L974: 		int64(cc.nextStreamID)+2*int64(cc.pendingRequests) < math.MaxInt32 &&
		transport.go#L1584: 		cc.pendingRequests++
		transport.go#L1586: 		cc.pendingRequests--